home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 (Developer) [x86] / NeXT Step 3.1 Intel dev.cdr.dmg / NextDeveloper / Examples / AppKit / ScrollDoodScroll / Controller.h next >
Text File  |  1992-05-28  |  753b  |  34 lines

  1. // Controller.h
  2. // By Jayson Adams, NeXT Developer Support Team
  3. // You may freely copy, distribute and reuse the code in this example.
  4. // NeXT disclaims any warranty of any kind, expressed or implied, as to its
  5. // fitness for any particular use.
  6.  
  7. #import <objc/Object.h>
  8.  
  9. @interface Controller:Object
  10. {
  11.     id    scrollView, tileScrollView;
  12.     id  matrix, psView;
  13.     id  textField;
  14.     id  stringTable;
  15.     int    selectedCount;
  16.     id  infoPanel;
  17. }
  18.  
  19. /* delegation methods */
  20. - appDidInit:sender;
  21.  
  22. /* instance methods */
  23. - createScrollingMatrix;
  24. - fillMatrix;
  25. - setupTileView;
  26. - nextItem:sender;
  27. - previousItem:sender;
  28. - (BOOL)multipleCellsSelected;
  29. - (BOOL)incrementCount:sender;
  30. - singleClick:sender;
  31. - doubleClick:sender;
  32. - displayInfoPanel:sender;
  33.  
  34. @end